2e468dcea2c451c07e2b37e12bccf42be23abffe,camel-core/src/main/java/org/apache/camel/model/InterceptType.java,InterceptType,createProxy,#,102
Before Change
// for the predicated version we add the proceed() to otherwise()
// before knowing if stop() will follow, so let's make a small adjustment
if (usePredicate.booleanValue() && getStopIntercept().booleanValue()) {
WhenType when = choice.getWhenClauses().get(0);
when.getOutputs().remove(this.getProceed());
}
After Change
// for the predicated version we add the proceed() to otherwise()
// before knowing if stop() will follow, so let's make a small adjustment
if (usePredicate && getStopIntercept()) {
WhenType when = choice.getWhenClauses().get(0);
when.getOutputs().remove(this.getProceed());
}